home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_04
/
1004113d
< prev
next >
Wrap
Text File
|
1992-02-08
|
294b
|
15 lines
/* lint -index(c,INDEX,HISTOGRAM) */
typedef unsigned int INDEX;
typedef int HISTOGRAM
#define SIZE (INDEX) 10
HISTOGRAM my_array[SIZE];
INDEX good_index;
int not_good_index;
my_array[good_index] = (HISTOGRAM) 5;
my_array[not_good_index] = (HISTOGRAM) 7;